home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / util / misc / mcxprefs.lha / MultiCXPrefs / Install_MultiCXPrefs next >
Text File  |  1995-05-24  |  609b  |  38 lines

  1. ; Installation script for MultiCX Prefs
  2.  
  3. (transcript "Installing MultiCX Prefs...")
  4.  
  5. (copylib
  6.         (prompt "Install gtlayout library.")
  7.         (help @copylib-help)
  8.         (source "libs/gtlayout.library")
  9.         (dest "libs:")
  10.         (confirm)
  11. )
  12.  
  13. (copylib
  14.     (prompt "Install WBStart-Handler.")
  15.     (help @copylib-help)
  16.     (source "l/WBStart-Handler")
  17.     (dest "l:")
  18.     (confirm)
  19. )
  20.  
  21. (set name
  22.     (askdir
  23.         (prompt "Install MultiCX Prefs where?")
  24.         (help @askdir-help)
  25.         (default "SYS:Prefs")
  26.     )
  27. )
  28.  
  29. (copyfiles
  30.     (source "MultiCXPrefs")
  31.     (infos)
  32.     (dest name)
  33. )
  34.  
  35. (set @default-dest name)
  36.  
  37. (exit)
  38.